Starred by @upsetbit (cai.).
Discover gists
This guide is for those who dares to install Windows 10 on slow netbooks (1GB of RAM).
Though Windows update program is over, you still may use old Windows product keys from license stickers to install Windows 10 on old machines.
UPD Jan 2019
This article is quite old, some instructions may be obsolete.
Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.
This sucks, but thankfully there are ways to work around it.
Before diving in: I encourage you to read this entire document, including the
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Mesh gradient editor — interactive MESH_GRADIENT showcase. | |
| // | |
| // A sidebar lists up to 16 color points: click a row to select it, click the | |
| // "+" row to add a point, and DELETE/BACKSPACE removes the selected point | |
| // (the last one always stays). The picker at the bottom-left edits the | |
| // selected color: an HSV square + hue strip working in Display P3, plus | |
| // per-channel HDR gain sliders (100%..400% of SDR) for EDR displays. Points | |
| // are drawn as ring handles over the gradient; drag them to move the colors | |
| // around. Handles fade out when the mouse has been still for two seconds, | |
| // and the layout follows the window size. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local player = game.Players.LocalPlayer | |
| local character = player.Character or player.CharacterAdded:Wait() | |
| local humanoid = character:WaitForChild("Humanoid") | |
| local jumpCount = 0 | |
| local maxJumps = 2 -- Default number of jumps | |
| local speedValue = 16 -- Default walk speed | |
| local speedBoostActive = false | |
| -- Function to update speed when speed value is set |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # setup_xdg_dirs.sh | |
| # | |
| # This script ensures the standard XDG base directories exist and creates | |
| # a file in ~/.config/bashrc.d/ to export the necessary environment variables. | |
| # Based on the standards from: https://wiki.archlinux.org/title/XDG_Base_Directory | |
| # Exit immediately if a command exits with a non-zero status. | |
| set -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import sqlite3 | |
| import os | |
| DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db" | |
| def activate(): |
NewerOlder
